home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Java Developers' Guide / f16-6.gif < prev    next >
Graphics Interchange Format  |  2000-05-25  |  13.6 KB  |  789x377  |  4-bit (16 colors)
   ocr: Gonstructors Employee public Employee (float sal, String fName, String 1Name) This constructor is used to create a new employee and assign him an initial salary. It does not verify that salary is less than the company's maximum salary. You could use this method as follows: Employee Emp = new Employee (35000f, "Mike", "Cohn"); Parameters: sal - The starting salary of the new employee. fName - The employee's first name. 1Name - The employee's last name.